import React, { useEffect } from 'react'; import EventEmitter from 'events'; import { IDataWithMeta, IPageInfoForEntity, IPagePopulatedToShowRevision, isClient, isIPageInfoForEntity, IUser, IUserHasId, pagePathUtils, pathUtils, } from '@growi/core'; import ExtensibleCustomError from 'extensible-custom-error'; import { model as mongooseModel } from 'mongoose'; import { NextPage, GetServerSideProps, GetServerSidePropsContext, } from 'next'; import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; import dynamic from 'next/dynamic'; import Head from 'next/head'; import { useRouter } from 'next/router'; import superjson from 'superjson'; import { Comments } from '~/components/Comments'; import { PageAlerts } from '~/components/PageAlert/PageAlerts'; // import { useTranslation } from '~/i18n'; import { CurrentPageContentFooter } from '~/components/PageContentFooter'; import { UsersHomePageFooterProps } from '~/components/UsersHomePageFooter'; import { CrowiRequest } from '~/interfaces/crowi-request'; // import { renderScriptTagByName, renderHighlightJsStyleTag } from '~/service/cdn-resources-loader'; // import { useIndentSize } from '~/stores/editor'; // import { useRendererSettings } from '~/stores/renderer'; // import { EditorMode, useEditorMode, useIsMobile } from '~/stores/ui'; import { EditorConfig } from '~/interfaces/editor-settings'; import { CustomWindow } from '~/interfaces/global'; import { RendererConfig } from '~/interfaces/services/renderer'; import { ISidebarConfig } from '~/interfaces/sidebar-config'; import { IUserUISettings } from '~/interfaces/user-ui-settings'; import { PageModel, PageDocument } from '~/server/models/page'; import { PageRedirectModel } from '~/server/models/page-redirect'; import { UserUISettingsModel } from '~/server/models/user-ui-settings'; import { useSWRxCurrentPage, useSWRxIsGrantNormalized } from '~/stores/page'; import { useRedirectFrom } from '~/stores/page-redirect'; import { usePreferDrawerModeByUser, usePreferDrawerModeOnEditByUser, useSidebarCollapsed, useCurrentSidebarContents, useCurrentProductNavWidth, useSelectedGrant, } from '~/stores/ui'; import loggerFactory from '~/utils/logger'; // import { isUserPage, isTrashPage, isSharedPage } from '~/utils/path-utils'; // import GrowiSubNavigation from '../client/js/components/Navbar/GrowiSubNavigation'; // import GrowiSubNavigationSwitcher from '../client/js/components/Navbar/GrowiSubNavigationSwitcher'; import { DescendantsPageListModal } from '../components/DescendantsPageListModal'; import { BasicLayout } from '../components/Layout/BasicLayout'; import GrowiContextualSubNavigation from '../components/Navbar/GrowiContextualSubNavigation'; import DisplaySwitcher from '../components/Page/DisplaySwitcher'; // import { serializeUserSecurely } from '../server/models/serializers/user-serializer'; // import PageStatusAlert from '../client/js/components/PageStatusAlert'; import { useCurrentUser, useCurrentPagePath, useIsLatestRevision, useIsForbidden, useIsNotFound, useIsTrashPage, useIsSharedUser, useIsEnabledStaleNotification, useIsIdenticalPath, useIsSearchServiceConfigured, useIsSearchServiceReachable, useDisableLinkSharing, useHackmdUri, useIsAclEnabled, useIsUserPage, useCsrfToken, useIsSearchScopeChildrenAsDefault, useCurrentPageId, useCurrentPathname, useIsSlackConfigured, useRendererConfig, useEditingMarkdown, useEditorConfig, useIsAllReplyShown, useIsUploadableFile, useIsUploadableImage, usePageUser, } from '../stores/context'; import { CommonProps, getNextI18NextConfig, getServerSideCommonProps, useCustomTitle, } from './utils/commons'; // import { useCurrentPageSWR } from '../stores/page'; const NotCreatablePage = dynamic(() => import('../components/NotCreatablePage').then(mod => mod.NotCreatablePage), { ssr: false }); const ForbiddenPage = dynamic(() => import('../components/ForbiddenPage'), { ssr: false }); const UnsavedAlertDialog = dynamic(() => import('./UnsavedAlertDialog'), { ssr: false }); const GrowiSubNavigationSwitcher = dynamic(() => import('../components/Navbar/GrowiSubNavigationSwitcher'), { ssr: false }); const UsersHomePageFooter = dynamic(() => import('../components/UsersHomePageFooter') .then(mod => mod.UsersHomePageFooter), { ssr: false }); const logger = loggerFactory('growi:pages:all'); const { isPermalink: _isPermalink, isUsersHomePage, isTrashPage: _isTrashPage, isUserPage, isCreatablePage, isTopPage, } = pagePathUtils; const { removeHeadingSlash } = pathUtils; type IPageToShowRevisionWithMeta = IDataWithMeta; type IPageToShowRevisionWithMetaSerialized = IDataWithMeta; superjson.registerCustom( { isApplicable: (v): v is IPageToShowRevisionWithMeta => { return v?.data != null && v?.data.toObject != null && v?.meta != null && isIPageInfoForEntity(v.meta); }, serialize: (v) => { return { data: superjson.stringify(v.data.toObject()), meta: superjson.stringify(v.meta), }; }, deserialize: (v) => { return { data: superjson.parse(v.data), meta: v.meta != null ? superjson.parse(v.meta) : undefined, }; }, }, 'IPageToShowRevisionWithMetaTransformer', ); const IdenticalPathPage = (): JSX.Element => { const IdenticalPathPage = dynamic(() => import('../components/IdenticalPathPage').then(mod => mod.IdenticalPathPage), { ssr: false }); return ; }; const PutbackPageModal = (): JSX.Element => { const PutbackPageModal = dynamic(() => import('../components/PutbackPageModal'), { ssr: false }); return ; }; type Props = CommonProps & { currentUser: IUser, pageWithMeta: IPageToShowRevisionWithMeta, // pageUser?: any, redirectFrom?: string; // shareLinkId?: string; isLatestRevision?: boolean isIdenticalPathPage?: boolean, isForbidden: boolean, isNotFound: boolean, isNotCreatablePage: boolean, // isAbleToDeleteCompletely: boolean, isSearchServiceConfigured: boolean, isSearchServiceReachable: boolean, isSearchScopeChildrenAsDefault: boolean, isSlackConfigured: boolean, // isMailerSetup: boolean, isAclEnabled: boolean, // hasSlackConfig: boolean, // drawioUri: string, hackmdUri: string, // noCdn: string, // highlightJsStyle: string, isAllReplyShown: boolean, // isContainerFluid: boolean, editorConfig: EditorConfig, isEnabledStaleNotification: boolean, // isEnabledLinebreaks: boolean, // isEnabledLinebreaksInComments: boolean, // adminPreferredIndentSize: number, // isIndentSizeForced: boolean, disableLinkSharing: boolean, rendererConfig: RendererConfig, // UI userUISettings?: IUserUISettings // Sidebar sidebarConfig: ISidebarConfig, }; const GrowiPage: NextPage = (props: Props) => { // const { t } = useTranslation(); const router = useRouter(); const { data: currentUser } = useCurrentUser(props.currentUser ?? null); // register global EventEmitter if (isClient()) { (window as CustomWindow).globalEmitter = new EventEmitter(); } // commons useEditorConfig(props.editorConfig); useCsrfToken(props.csrfToken); // UserUISettings usePreferDrawerModeByUser(props.userUISettings?.preferDrawerModeByUser ?? props.sidebarConfig.isSidebarDrawerMode); usePreferDrawerModeOnEditByUser(props.userUISettings?.preferDrawerModeOnEditByUser); useSidebarCollapsed(props.userUISettings?.isSidebarCollapsed ?? props.sidebarConfig.isSidebarClosedAtDockMode); useCurrentSidebarContents(props.userUISettings?.currentSidebarContents); useCurrentProductNavWidth(props.userUISettings?.currentProductNavWidth); // page useIsLatestRevision(props.isLatestRevision); // useOwnerOfCurrentPage(props.pageUser != null ? JSON.parse(props.pageUser) : null); useIsForbidden(props.isForbidden); useIsNotFound(props.isNotFound); // useIsNotCreatable(props.IsNotCreatable); useRedirectFrom(props.redirectFrom); // useShared(); // useShareLinkId(props.shareLinkId); useIsSharedUser(false); // this page cann't be routed for '/share' useIsIdenticalPath(false); // TODO: need to initialize from props // useIsAbleToDeleteCompletely(props.isAbleToDeleteCompletely); useIsEnabledStaleNotification(props.isEnabledStaleNotification); useIsSearchServiceConfigured(props.isSearchServiceConfigured); useIsSearchServiceReachable(props.isSearchServiceReachable); useIsSearchScopeChildrenAsDefault(props.isSearchScopeChildrenAsDefault); useIsSlackConfigured(props.isSlackConfigured); // useIsMailerSetup(props.isMailerSetup); useIsAclEnabled(props.isAclEnabled); // useHasSlackConfig(props.hasSlackConfig); // useDrawioUri(props.drawioUri); useHackmdUri(props.hackmdUri); // useNoCdn(props.noCdn); // useIndentSize(props.adminPreferredIndentSize); useDisableLinkSharing(props.disableLinkSharing); useRendererConfig(props.rendererConfig); // useRendererSettings(props.rendererSettingsStr != null ? JSON.parse(props.rendererSettingsStr) : undefined); // useGrowiRendererConfig(props.growiRendererConfigStr != null ? JSON.parse(props.growiRendererConfigStr) : undefined); useIsAllReplyShown(props.isAllReplyShown); useIsUploadableFile(props.editorConfig.upload.isUploadableFile); useIsUploadableImage(props.editorConfig.upload.isUploadableImage); // const { data: editorMode } = useEditorMode(); const { pageWithMeta, userUISettings } = props; let shouldRenderPutbackPageModal = false; if (pageWithMeta != null) { shouldRenderPutbackPageModal = _isTrashPage(pageWithMeta.data.path); } const pageId = pageWithMeta?.data._id; const pagePath = pageWithMeta?.data.path ?? props.currentPathname; useCurrentPageId(pageId); useSWRxCurrentPage(undefined, pageWithMeta?.data); // store initial data useIsUserPage(isUserPage(pagePath)); // useIsNotCreatable(props.isForbidden || !isCreatablePage(pagePath)); // TODO: need to include props.isIdentical useCurrentPagePath(pagePath); useCurrentPathname(props.currentPathname); useEditingMarkdown(pageWithMeta?.data.revision?.body); useIsTrashPage(_isTrashPage(pagePath)); const { data: grantData } = useSWRxIsGrantNormalized(pageId); const { mutate: mutateSelectedGrant } = useSelectedGrant(); usePageUser(pageWithMeta?.data.creator); // sync grant data useEffect(() => { mutateSelectedGrant(grantData?.grantData.currentPageGrant); }, [grantData?.grantData.currentPageGrant, mutateSelectedGrant]); // sync pathname by Shallow Routing https://nextjs.org/docs/routing/shallow-routing useEffect(() => { const decodedURI = decodeURI(window.location.pathname); if (isClient() && decodedURI !== props.currentPathname) { router.replace(props.currentPathname, undefined, { shallow: true }); } }, [props.currentPathname, router]); const classNames: string[] = []; // switch (editorMode) { // case EditorMode.Editor: // classNames.push('on-edit', 'builtin-editor'); // break; // case EditorMode.HackMD: // classNames.push('on-edit', 'hackmd'); // break; // } // if (page == null) { // classNames.push('not-found-page'); // } const isTopPagePath = isTopPage(pageWithMeta?.data.path ?? ''); return ( <> {/* {renderScriptTagByName('drawio-viewer')} {renderScriptTagByName('highlight-addons')} {renderHighlightJsStyleTag(props.highlightJsStyle)} */} {/* */}
{ props.isIdenticalPathPage && } { !props.isIdenticalPathPage && ( <> { props.isForbidden && } { props.isNotCreatablePage && } { !props.isForbidden && !props.isNotCreatablePage && } {/* */} {/* */} ) } {/*
*/}
{ !props.isIdenticalPathPage && !props.isNotFound && (
{ !isTopPagePath && () } { (pageWithMeta != null && isUsersHomePage(pageWithMeta.data.path)) && ( ) }
)} {shouldRenderPutbackPageModal && }
); }; function getPageIdFromPathname(currentPathname: string): string | null { return _isPermalink(currentPathname) ? removeHeadingSlash(currentPathname) : null; } class MultiplePagesHitsError extends ExtensibleCustomError { pagePath: string; constructor(pagePath: string) { super(`MultiplePagesHitsError occured by '${pagePath}'`); this.pagePath = pagePath; } } async function injectPageData(context: GetServerSidePropsContext, props: Props): Promise { const req: CrowiRequest = context.req as CrowiRequest; const { crowi } = req; const { revisionId } = req.query; const Page = crowi.model('Page') as PageModel; const PageRedirect = mongooseModel('PageRedirect') as PageRedirectModel; const { pageService } = crowi; let currentPathname = props.currentPathname; const pageId = getPageIdFromPathname(currentPathname); const isPermalink = _isPermalink(currentPathname); const { user } = req; if (!isPermalink) { // check redirects const chains = await PageRedirect.retrievePageRedirectEndpoints(currentPathname); if (chains != null) { // overwrite currentPathname currentPathname = chains.end.toPath; props.currentPathname = currentPathname; // set redirectFrom props.redirectFrom = chains.start.fromPath; } // check whether the specified page path hits to multiple pages const count = await Page.countByPathAndViewer(currentPathname, user, null, true); if (count > 1) { throw new MultiplePagesHitsError(currentPathname); } } const pageWithMeta: IPageToShowRevisionWithMeta = await pageService.findPageAndMetaDataByViewer(pageId, currentPathname, user, true); // includeEmpty = true, isSharedPage = false const page = pageWithMeta?.data as unknown as PageDocument; // add user to seen users if (page != null && user != null) { await page.seen(user); } // populate & check if the revision is latest if (page != null) { page.initLatestRevisionField(revisionId); await page.populateDataToShowRevision(); props.isLatestRevision = page.isLatestRevision(); } props.pageWithMeta = pageWithMeta; } async function injectUserUISettings(context: GetServerSidePropsContext, props: Props): Promise { const req = context.req as CrowiRequest; const { user } = req; const UserUISettings = mongooseModel('UserUISettings') as UserUISettingsModel; const userUISettings = user == null ? null : await UserUISettings.findOne({ user: user._id }).exec(); if (userUISettings != null) { props.userUISettings = userUISettings.toObject(); } } async function injectRoutingInformation(context: GetServerSidePropsContext, props: Props): Promise { const req: CrowiRequest = context.req as CrowiRequest; const { crowi } = req; const Page = crowi.model('Page') as PageModel; const { currentPathname } = props; const pageId = getPageIdFromPathname(currentPathname); const isPermalink = _isPermalink(currentPathname); const page = props.pageWithMeta?.data; if (props.isIdenticalPathPage) { // TBD } else if (page == null) { props.isNotFound = true; props.isNotCreatablePage = !isCreatablePage(currentPathname); // check the page is forbidden or just does not exist. const count = isPermalink ? await Page.count({ _id: pageId }) : await Page.count({ path: currentPathname }); props.isForbidden = count > 0; } else { props.isNotFound = page.isEmpty; // /62a88db47fed8b2d94f30000 ==> /path/to/page if (isPermalink && page.isEmpty) { props.currentPathname = page.path; } // /path/to/page ==> /62a88db47fed8b2d94f30000 if (!isPermalink && !page.isEmpty) { const isToppage = pagePathUtils.isTopPage(props.currentPathname); if (!isToppage) { props.currentPathname = `/${page._id}`; } } } } // async function injectPageUserInformation(context: GetServerSidePropsContext, props: Props): Promise { // const req: CrowiRequest = context.req as CrowiRequest; // const { crowi } = req; // const UserModel = crowi.model('User'); // if (isUserPage(props.currentPagePath)) { // const user = await UserModel.findUserByUsername(UserModel.getUsernameByPath(props.currentPagePath)); // if (user != null) { // props.pageUser = JSON.stringify(user.toObject()); // } // } // } function injectServerConfigurations(context: GetServerSidePropsContext, props: Props): void { const req: CrowiRequest = context.req as CrowiRequest; const { crowi } = req; const { appService, searchService, configManager, aclService, slackNotificationService, mailService, } = crowi; props.isSearchServiceConfigured = searchService.isConfigured; props.isSearchServiceReachable = searchService.isReachable; props.isSearchScopeChildrenAsDefault = configManager.getConfig('crowi', 'customize:isSearchScopeChildrenAsDefault'); props.isSlackConfigured = crowi.slackIntegrationService.isSlackConfigured; // props.isMailerSetup = mailService.isMailerSetup; props.isAclEnabled = aclService.isAclEnabled(); // props.hasSlackConfig = slackNotificationService.hasSlackConfig(); // props.drawioUri = configManager.getConfig('crowi', 'app:drawioUri'); props.hackmdUri = configManager.getConfig('crowi', 'app:hackmdUri'); // props.noCdn = configManager.getConfig('crowi', 'app:noCdn'); // props.highlightJsStyle = configManager.getConfig('crowi', 'customize:highlightJsStyle'); props.isAllReplyShown = configManager.getConfig('crowi', 'customize:isAllReplyShown'); // props.isContainerFluid = configManager.getConfig('crowi', 'customize:isContainerFluid'); props.isEnabledStaleNotification = configManager.getConfig('crowi', 'customize:isEnabledStaleNotification'); // props.isEnabledLinebreaks = configManager.getConfig('markdown', 'markdown:isEnabledLinebreaks'); // props.isEnabledLinebreaksInComments = configManager.getConfig('markdown', 'markdown:isEnabledLinebreaksInComments'); props.disableLinkSharing = configManager.getConfig('crowi', 'security:disableLinkSharing'); props.editorConfig = { upload: { isUploadableFile: crowi.fileUploadService.getFileUploadEnabled(), isUploadableImage: crowi.fileUploadService.getIsUploadable(), }, }; // props.adminPreferredIndentSize = configManager.getConfig('markdown', 'markdown:adminPreferredIndentSize'); // props.isIndentSizeForced = configManager.getConfig('markdown', 'markdown:isIndentSizeForced'); props.rendererConfig = { isEnabledLinebreaks: configManager.getConfig('markdown', 'markdown:isEnabledLinebreaks'), isEnabledLinebreaksInComments: configManager.getConfig('markdown', 'markdown:isEnabledLinebreaksInComments'), adminPreferredIndentSize: configManager.getConfig('markdown', 'markdown:adminPreferredIndentSize'), isIndentSizeForced: configManager.getConfig('markdown', 'markdown:isIndentSizeForced'), plantumlUri: process.env.PLANTUML_URI ?? null, blockdiagUri: process.env.BLOCKDIAG_URI ?? null, // XSS Options isEnabledXssPrevention: configManager.getConfig('markdown', 'markdown:xss:isEnabledPrevention'), attrWhiteList: crowi.xssService.getAttrWhiteList(), tagWhiteList: crowi.xssService.getTagWhiteList(), highlightJsStyleBorder: crowi.configManager.getConfig('crowi', 'customize:highlightJsStyleBorder'), }; props.sidebarConfig = { isSidebarDrawerMode: configManager.getConfig('crowi', 'customize:isSidebarDrawerMode'), isSidebarClosedAtDockMode: configManager.getConfig('crowi', 'customize:isSidebarClosedAtDockMode'), }; } /** * for Server Side Translations * @param context * @param props * @param namespacesRequired */ async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise { const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired); props._nextI18Next = nextI18NextConfig._nextI18Next; } export const getServerSideProps: GetServerSideProps = async(context: GetServerSidePropsContext) => { const req = context.req as CrowiRequest; const { user } = req; const result = await getServerSideCommonProps(context); // check for presence // see: https://github.com/vercel/next.js/issues/19271#issuecomment-730006862 if (!('props' in result)) { throw new Error('invalid getSSP result'); } const props: Props = result.props as Props; if (props.redirectDestination != null) { return { redirect: { permanent: false, destination: props.redirectDestination, }, }; } if (user != null) { props.currentUser = user.toObject(); } try { await injectPageData(context, props); } catch (err) { if (err instanceof MultiplePagesHitsError) { props.isIdenticalPathPage = true; } else { throw err; } } await injectUserUISettings(context, props); await injectRoutingInformation(context, props); injectServerConfigurations(context, props); await injectNextI18NextConfigurations(context, props, ['translation']); return { props, }; }; export default GrowiPage;